home *** CD-ROM | disk | FTP | other *** search
- *** 40.1 1993/10/30 08:59:36
- --- nlist.c 1993/10/31 09:10:58
- ***************
- *** 31,37 ****
- if( !symread )
- {
- symread=min(sizeof(symbuf),symcount);
- ! if(symread!=read(sym_fd,symbuf,symread))
- {
- close(sym_fd);
- symread=0;
- --- 31,37 ----
- if( !symread )
- {
- symread=min(sizeof(symbuf),symcount);
- ! if((int)symread != read(sym_fd,symbuf, (int)symread))
- {
- close(sym_fd);
- symread=0;
- ***************
- *** 76,82 ****
- if( ( sym_fd=open(file,O_RDONLY) ) == -1 ) return -1;
-
- /* Read in file header */
- ! read(sym_fd,&hbuf,sizeof(hbuf));
-
- /* Executable file ? */
- if(A_BADMAG(hbuf))
- --- 76,82 ----
- if( ( sym_fd=open(file,O_RDONLY) ) == -1 ) return -1;
-
- /* Read in file header */
- ! read(sym_fd,&hbuf,(int) sizeof(hbuf));
-
- /* Executable file ? */
- if(A_BADMAG(hbuf))
- ***************
- *** 87,93 ****
- }
-
- /* Any symbols? */
- ! if( !(symcount=hbuf.a_syms) )
- {
- errno=EDOM;
- return -1;
- --- 87,93 ----
- }
-
- /* Any symbols? */
- ! if((symcount=hbuf.a_syms) == 0)
- {
- errno=EDOM;
- return -1;
- *** 40.1 1993/10/30 08:59:36
- --- qsort.c 1993/10/31 08:56:30
- ***************
- *** 21,37 ****
- #include <string.h>
- #include <memory.h>
-
- #ifdef __GNUC__
- # ifdef minix
- void *alloca(unsigned long);
- typedef unsigned long size_t;
- # endif
- ! # define INLINE inline
- #else
- # define INLINE /* */
- - #endif
- - #ifndef _COMPILER_H
- - #include <compiler.h>
- #endif
-
- /* macros for incrementing/decrementing void pointers */
- --- 21,42 ----
- #include <string.h>
- #include <memory.h>
-
- + #ifndef _COMPILER_H
- + #include <compiler.h>
- + #endif
- +
- #ifdef __GNUC__
- # ifdef minix
- void *alloca(unsigned long);
- typedef unsigned long size_t;
- # endif
- ! # ifdef __GNUC_INLINE__
- ! # define INLINE inline
- ! # else
- ! # define INLINE /* */
- ! # endif
- #else
- # define INLINE /* */
- #endif
-
- /* macros for incrementing/decrementing void pointers */
- *** 40.1 1993/10/30 08:59:36
- --- strerror.c 1993/10/31 11:24:54
- ***************
- *** 96,106 ****
- "range error", /* 88 */
- "domain error", /* 89 */
- "I/O error", /* 90 */
- ! "disk full" /* 91 */
- };
-
- int sys_nerr = (int)(sizeof(sys_errlist)/sizeof(sys_errlist[0]));
-
- /*
- * strerror - map error number to descriptive string
- *
- --- 96,160 ----
- "range error", /* 88 */
- "domain error", /* 89 */
- "I/O error", /* 90 */
- ! "disk full", /* 91 */
- ! nullstr, /* 92 */
- ! nullstr, /* 93 */
- ! nullstr, /* 94 */
- ! nullstr, /* 95 */
- ! nullstr, nullstr, nullstr, nullstr, nullstr, /* 96 - 100 */
- ! nullstr, nullstr, nullstr, nullstr, nullstr, /* 101 - 105 */
- ! nullstr, nullstr, nullstr, nullstr, nullstr, /* 106 - 110 */
- ! nullstr, nullstr, nullstr, nullstr, nullstr, /* 111 - 115 */
- ! nullstr, nullstr, nullstr, nullstr, nullstr, /* 116 - 120 */
- ! nullstr, nullstr, nullstr, nullstr, nullstr, /* 121 - 125 */
- ! nullstr, /* 126 */
- ! nullstr, /* 127 */
- ! "interrupted system call" /* 128 */
- };
-
- int sys_nerr = (int)(sizeof(sys_errlist)/sizeof(sys_errlist[0]));
-
- + #ifdef __MINT__
- +
- + /* Support for Kay Roemer's socket library */
- +
- + char *_sock_errlist[] = {
- + "Socket operation on non-socket", /* 300 */
- + "Destination address required",
- + "Message too long",
- + "Protocol wrong type for socket",
- + "Protocol not available",
- + "Protocol not supported",
- + "Socket type not supported",
- + "Operation not supported",
- + "Protocol family not supported",
- + "Address family not supported by protocol",
- + "Address already in use",
- + "Cannot assign requested address",
- + "Network is down",
- + "Network is unreachable",
- + "Network dropped conn. because of reset",
- + "Software caused connection abort",
- + "Connection reset by peer",
- + "Socket is already connected",
- + "Socket is not connected",
- + "Cannot send after shutdown",
- + "Connection timed out",
- + "Connection refused",
- + "Host is down",
- + "No route to host",
- + "Operation already in progress",
- + "Operation now in progress",
- + "Operation would block"
- + };
- +
- + int _sock_nerr = (int)(sizeof (_sock_errlist) / sizeof (char *));
- +
- + #define MINSOCKERR 300
- + #define MAXSOCKERR (MINSOCKERR + _sock_nerr)
- +
- + #endif
- +
- /*
- * strerror - map error number to descriptive string
- *
- ***************
- *** 115,120 ****
- --- 169,178 ----
-
- if (errnum >= 0 && errnum < sys_nerr)
- return(sys_errlist[errnum]);
- + #ifdef __MINT__
- + else if (errnum >= MINSOCKERR && errnum < MAXSOCKERR)
- + return(_sock_errlist[errnum - MINSOCKERR]);
- + #endif
- else
- return(nullstr);
- }
- *** 40.1 1993/10/30 08:59:36
- --- utime.c 1993/10/31 09:11:24
- ***************
- *** 135,141 ****
- date = (int) (dtime & 0xffff);
- time = (int) (dtime >> 16) & 0xffff;
-
- ! if ((r = Tsetdate(date)) || (r = Tsettime(time))) {
- errno = r == -1 ? EBADARG : (int) -r;
- return -1;
- }
- --- 135,141 ----
- date = (int) (dtime & 0xffff);
- time = (int) (dtime >> 16) & 0xffff;
-
- ! if (((r = Tsetdate(date)) != 0) || ((r = Tsettime(time)) != 0)) {
- errno = r == -1 ? EBADARG : (int) -r;
- return -1;
- }
- *** 40.1 1993/10/30 08:59:36
- --- wcmb.c 1993/10/31 09:11:26
- ***************
- *** 31,37 ****
-
- if(mbstr == NULL) mbstr = "";
-
- ! while(revcnt && (*wstr++ = *mbstr++)) revcnt--;
-
- return maxlen - revcnt;
- }
- --- 31,37 ----
-
- if(mbstr == NULL) mbstr = "";
-
- ! while(revcnt && ((*wstr++ = *mbstr++) != 0)) revcnt--;
-
- return maxlen - revcnt;
- }
- ***************
- *** 62,68 ****
-
- if(wstr == NULL) wstr = _wnull; /* Better avoid L"". */
-
- ! while(revcnt && (*mbstr++ = (char) *wstr++)) revcnt--;
-
- return maxlen - revcnt;
- }
- --- 62,68 ----
-
- if(wstr == NULL) wstr = _wnull; /* Better avoid L"". */
-
- ! while(revcnt && ((*mbstr++ = (char) *wstr++) != 0)) revcnt--;
-
- return maxlen - revcnt;
- }
- *** 40.1 1993/10/30 08:59:36
- --- wcscat.c 1993/10/31 09:11:30
- ***************
- *** 19,25 ****
- {
- for (dscan = dst; *dscan; dscan++)
- continue;
- ! while ((*dscan++ = *sscan++))
- continue;
- }
- return(dst);
- --- 19,25 ----
- {
- for (dscan = dst; *dscan; dscan++)
- continue;
- ! while ((*dscan++ = *sscan++) != 0)
- continue;
- }
- return(dst);
- ***************
- *** 43,49 ****
- for (dscan = dst; *dscan; dscan++)
- continue;
- count = n;
- ! while ((c = *sscan++) && --count >= 0)
- *dscan++ = c;
- *dscan = 0;
- }
- --- 43,49 ----
- for (dscan = dst; *dscan; dscan++)
- continue;
- count = n;
- ! while (((c = *sscan++) != 0) && --count >= 0)
- *dscan++ = c;
- *dscan = 0;
- }
- *** 40.1 1993/10/30 08:56:04
- --- Changelog 1993/11/01 22:31:34
- ***************
- *** 4,9 ****
- --- 4,144 ----
- Changes are listed in *reverse* order, most recent changes being
- first.
-
- + PATCHLEVEL41::
- +
- + ***** nlist.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:24:14; author: hohmuth; state: Exp; lines: +3 -3
- + add a few typecasts for __MSHORT__
- + =============================================================================
- + ***** qsort.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 08:58:56; author: jrb; state: Exp; lines: +9 -4
- + adjust order of inclusion of compiler.h so that INLINE may be
- + conditionally overriden even when __GNUC__
- + =============================================================================
- + ***** strerror.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 11:33:36; author: entropy; state: Exp; lines: +59 -1
- + Add support for the socket lib.
- + =============================================================================
- + ***** utime.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:25:04; author: hohmuth; state: Exp; lines: +1 -1
- + make assignments used as truth values clearer, to avoid
- + spurious warnings
- + =============================================================================
- + ***** wcmb.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:25:16; author: hohmuth; state: Exp; lines: +2 -2
- + make assignments used as truth values clearer, to avoid
- + spurious warnings
- + =============================================================================
- + ***** wcscat.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:25:24; author: hohmuth; state: Exp; lines: +2 -2
- + make assignments used as truth values clearer, to avoid
- + spurious warnings
- + =============================================================================
- + ***** include/PatchLev.h
- + ----------------------------
- + revision 40.2
- + date: 1993/10/30 10:30:02; author: entropy; state: Exp; lines: +1 -1
- + -
- + =============================================================================
- + ***** include/errno.h
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 11:03:32; author: entropy; state: Exp; lines: +40 -1
- + Add support for the socket library.
- + =============================================================================
- + ***** include/osbind.h
- + ----------------------------
- + revision 40.3
- + date: 1993/10/31 09:23:14; author: hohmuth; state: Exp; lines: +3 -3
- + fix prototypes for Pure C: gemdos(), bios(), xbios()
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:00:00; author: jrb; state: Exp; lines: +11 -2
- + relax the constraints on the inputs of trap_14_wwwwwww (only
- + Rsconf maps to this) to "g" from "r", as these many "r" 's
- + give gcc 2.>3.X heartaches (understandably). note this is ok
- + since these args will never be expressions, and we never
- + have to constrain hard enough to force eval before we change
- + sp from underneath gcc.
- + =============================================================================
- + ***** ioctl.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:24:04; author: hohmuth; state: Exp; lines: +1 -1
- + add a few typecasts for __MSHORT__
- + =============================================================================
- + ***** open.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:24:24; author: hohmuth; state: Exp; lines: +1 -1
- + add a few typecasts for __MSHORT__
- + =============================================================================
- + ***** popen.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:24:34; author: hohmuth; state: Exp; lines: +6 -1
- + add a few typecasts for __MSHORT__
- + add #include <sys\types.h> for Turbo C
- + =============================================================================
- + ***** read.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:25:32; author: hohmuth; state: Exp; lines: +1 -1
- + add typecasts to calls of Psignal(), Fselect() and Dreaddir(),
- + to make the argument types match the prototypes
- + =============================================================================
- + ***** select.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:25:42; author: hohmuth; state: Exp; lines: +3 -3
- + add typecasts to calls of Psignal(), Fselect() and Dreaddir(),
- + to make the argument types match the prototypes
- + add "U" to unsigned short constants
- + =============================================================================
- + ***** tcbreak.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:24:44; author: hohmuth; state: Exp; lines: +1 -1
- + add a few typecasts for __MSHORT__
- + =============================================================================
- + ***** truncate.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:24:52; author: hohmuth; state: Exp; lines: +2 -2
- + add a few typecasts for __MSHORT__
- + =============================================================================
- + ***** ttyname.c
- + ----------------------------
- + revision 40.2
- + date: 1993/10/31 09:25:50; author: hohmuth; state: Exp; lines: +1 -1
- + add typecasts to calls of Psignal(), Fselect() and Dreaddir(),
- + to make the argument types match the prototypes
- + =============================================================================
- + ***** purec/Makefile
- + ----------------------------
- + revision 40.2
- + date: 1993/11/01 22:08:26; author: hohmuth; state: Exp; lines: +14 -9
- + *** empty log message ***
- + =============================================================================
- + ***** purec/mintlib.prj
- + ----------------------------
- + revision 40.2
- + date: 1993/11/01 22:08:26; author: hohmuth; state: Exp; lines: +13 -0
- + *** empty log message ***
- + =============================================================================
- +
- PATCHLEVEL40::
-
- ***** abort.c
- *** 40.1 1993/10/30 08:59:36
- --- Makefile.adm 1993/10/30 22:12:32
- ***************
- *** 89,97 ****
- MKDIFFS `expr $V - 1` $(dist)/src $$dir/RCS/* >> $s ; \
- done
- rm -f $h
- ! cd /usr/include ; for dir in . sys ;\
- do \
- $(srcdir)/MKDIFFS `expr $V - 1` $(dist)/include $$dir/RCS/* >> $h ; \
- done
-
- !
- --- 89,116 ----
- MKDIFFS `expr $V - 1` $(dist)/src $$dir/RCS/* >> $s ; \
- done
- rm -f $h
- ! cd $(incdir) ; for dir in . sys ;\
- do \
- $(srcdir)/MKDIFFS `expr $V - 1` $(dist)/include $$dir/RCS/* >> $h ; \
- done
-
- ! newversion:
- ! for dir in . $(incdir) $(incdir)/sys crlf lattice purec \
- ! purec/unixname sozobon ;\
- ! do \
- ! cd $$dir ;\
- ! ci -l -f -m- -r$V.1 RCS/* ;\
- ! co -f -l RCS/* ;\
- ! done
- ! echo '/*' > PatchLev.h
- ! echo ' * This identifies the version of the MiNT library in this' >> PatchLev.h
- ! echo ' * directory.' >> PatchLev.h
- ! echo ' */' >> PatchLev.h
- ! echo '' >> PatchLev.h
- ! cp PatchLev.h $(incdir)/PatchLev.h
- ! echo '#define PatchLevel "'`expr $V + 1`'"' >> PatchLev.h
- ! echo '#define _PatchLevel "'`expr $V + 1`'"' >> $(incdir)/PatchLev.h
- ! echo 'V='`expr $V + 1` > Version
- ! ci -f -l -m- Version
- ! ci -f -l -m- PatchLev.h
- ! cd $(incdir) ; ci -f -l -m- PatchLev.h
- *** 40.1 1993/10/30 08:59:36
- --- PatchLev.h 1993/10/31 10:38:34
- ***************
- *** 3,6 ****
- * directory.
- */
-
- ! #define PatchLevel "40"
- --- 3,6 ----
- * directory.
- */
-
- ! #define PatchLevel "41"
- *** 40.1 1993/10/30 08:59:36
- --- Version 1993/10/30 22:11:24
- ***************
- *** 1 ****
- ! V=40
- --- 1 ----
- ! V=41
- *** 40.1 1993/10/30 08:59:36
- --- ioctl.c 1993/10/31 09:10:54
- ***************
- *** 65,71 ****
- return -1;
- }
- (void) Fclose(fd);
- ! null_fd = Fopen(__mint < 9 ? "V:\\null"
- : "U:\\dev\\null", O_RDWR);
- (void) Fforce(-1, null_fd);
- __open_stat[__OPEN_INDEX(-1)].status = FH_UNKNOWN;
- --- 65,71 ----
- return -1;
- }
- (void) Fclose(fd);
- ! null_fd = (int) Fopen(__mint < 9 ? "V:\\null"
- : "U:\\dev\\null", O_RDWR);
- (void) Fforce(-1, null_fd);
- __open_stat[__OPEN_INDEX(-1)].status = FH_UNKNOWN;
- *** 40.1 1993/10/30 08:59:36
- --- open.c 1993/10/31 09:11:02
- ***************
- *** 154,160 ****
- (void) Fclose(rv);
- rv = (int) fcbuf;
- } else {
- ! (void) Fclose(fcbuf);
- }
- if (rv == 0) {
- (void) Fforce(-1, rv);
- --- 154,160 ----
- (void) Fclose(rv);
- rv = (int) fcbuf;
- } else {
- ! (void) Fclose((int) fcbuf);
- }
- if (rv == 0) {
- (void) Fforce(-1, rv);
- *** 40.1 1993/10/30 08:59:36
- --- popen.c 1993/10/31 09:11:04
- ***************
- *** 9,15 ****
- --- 9,19 ----
- #include <string.h>
- #include <errno.h>
- #include <unistd.h>
- + #ifdef __TURBOC__
- + #include <sys\types.h>
- + #else
- #include <sys/types.h>
- + #endif
- #include <wait.h>
- #include <mintbind.h>
-
- ***************
- *** 51,57 ****
- /* initialize the new pipe entry */
- kidfd = (*type == 'r') ? 1 : 0;
-
- ! savefd = r = Fdup (kidfd);
- /* get those close-on-exec flags right...
- (well just do fork/exec would be easier :-) -nox */
-
- --- 55,62 ----
- /* initialize the new pipe entry */
- kidfd = (*type == 'r') ? 1 : 0;
-
- ! r = Fdup (kidfd);
- ! savefd = (int) r;
- /* get those close-on-exec flags right...
- (well just do fork/exec would be easier :-) -nox */
-
- *** 40.1 1993/10/30 08:59:36
- --- read.c 1993/10/31 09:11:08
- ***************
- *** 86,92 ****
- }
- #endif
- omask = Psigblock(~0L);
- ! osigt = (__Sigfunc) Psignal(SIGTTIN, SIG_IGN);
- (void) Psignal(SIGTTIN, (long) osigt);
- (void) Psigsetmask(omask);
- if ((omask & sigmask(SIGTTIN)) || (osigt == SIG_IGN)) {
- --- 86,92 ----
- }
- #endif
- omask = Psigblock(~0L);
- ! osigt = (__Sigfunc) Psignal(SIGTTIN, (long) SIG_IGN);
- (void) Psignal(SIGTTIN, (long) osigt);
- (void) Psigsetmask(omask);
- if ((omask & sigmask(SIGTTIN)) || (osigt == SIG_IGN)) {
- *** 40.1 1993/10/30 08:59:36
- --- select.c 1993/10/31 09:11:12
- ***************
- *** 38,49 ****
- We have to loop for a bigger timeout. */
- for (;;)
- {
- ! if (mtime > 65535)
- ! stime = 65535;
- else
- stime = (unsigned short)mtime;
- mtime -= stime;
- ! rval = Fselect (stime, rfds, wfds, xfds);
- if (rval < 0)
- {
- errno = -rval;
- --- 38,49 ----
- We have to loop for a bigger timeout. */
- for (;;)
- {
- ! if (mtime > 65535U)
- ! stime = 65535U;
- else
- stime = (unsigned short)mtime;
- mtime -= stime;
- ! rval = Fselect (stime, (long *) rfds, (long *) wfds, (long *) xfds);
- if (rval < 0)
- {
- errno = -rval;
- *** 40.1 1993/10/30 08:59:36
- --- tcbreak.c 1993/10/31 09:11:14
- ***************
- *** 39,43 ****
- }
- }
- (void) Psigsetmask(oldmask);
- ! return r;
- }
- --- 39,43 ----
- }
- }
- (void) Psigsetmask(oldmask);
- ! return (int) r;
- }
- *** 40.1 1993/10/30 08:59:36
- --- truncate.c 1993/10/31 09:11:18
- ***************
- *** 52,58 ****
- return -1;
- }
- if (__mint > 90)
- ! res = Fcntl (fh, (long) &length, FTRUNCATE);
- Fclose (fh);
- if (res == -EINVAL && length == 0)
- {
- --- 52,58 ----
- return -1;
- }
- if (__mint > 90)
- ! res = (int) Fcntl (fh, (long) &length, FTRUNCATE);
- Fclose (fh);
- if (res == -EINVAL && length == 0)
- {
- ***************
- *** 76,82 ****
- int res;
-
- if (__mint > 90)
- ! res = Fcntl (fd, (long) &length, FTRUNCATE);
- else
- res = -EINVAL;
-
- --- 76,82 ----
- int res;
-
- if (__mint > 90)
- ! res = (int) Fcntl (fd, (long) &length, FTRUNCATE);
- else
- res = -EINVAL;
-
- *** 40.1 1993/10/30 08:59:36
- --- ttyname.c 1993/10/31 09:11:20
- ***************
- *** 49,55 ****
- *where++ = *dir++;
- }
-
- ! while (Dreaddir((int) sizeof (dbuf), drv, &dbuf) == 0) {
- strcpy(where, dbuf.name);
- if (Fxattr(0, _name, &testsb))
- continue;
- --- 49,55 ----
- *where++ = *dir++;
- }
-
- ! while (Dreaddir((int) sizeof (dbuf), drv, (char *) &dbuf) == 0) {
- strcpy(where, dbuf.name);
- if (Fxattr(0, _name, &testsb))
- continue;
- *** 40.1 1993/11/01 21:35:14
- --- purec/Makefile 1993/11/01 21:38:26
- ***************
- *** 45,51 ****
- # If you define TOSIFY_NAMES below, this is path will be automatically
- # tosified for the compiler's -I switch.
-
- ! INCLUDEDIR= /dev/g/gnu/include
-
- # OSBINDLIB= the location of the osbind library by Ole Arndt und
- # Ulf Moeller, if you have it. This library replaces our TOS bindings.
- --- 45,51 ----
- # If you define TOSIFY_NAMES below, this is path will be automatically
- # tosified for the compiler's -I switch.
-
- ! INCLUDEDIR= /dev/z/src/lib/include
-
- # OSBINDLIB= the location of the osbind library by Ole Arndt und
- # Ulf Moeller, if you have it. This library replaces our TOS bindings.
- ***************
- *** 106,112 ****
- sh_backslash= \\
- #sh_backslash= \$(nothing)
-
- ! # SHELL, RM, CP, INSTALL_DATA, SED, ECHO: edit to suite your taste
- # These programs _should_ understand unix-like path names (like "/dev/c/foo").
- # INSTALL_DATA is only needed during "make install" and "make install-includes".
- # AWK is only needed when using Turbo C without the osbind library (see
- --- 106,112 ----
- sh_backslash= \\
- #sh_backslash= \$(nothing)
-
- ! # SHELL, RM, CP, INSTALL_DATA, AWK, ECHO: edit to suite your taste
- # These programs _should_ understand unix-like path names (like "/dev/c/foo").
- # INSTALL_DATA is only needed during "make install" and "make install-includes".
- # AWK is only needed when using Turbo C without the osbind library (see
- ***************
- *** 299,306 ****
- ### how to build MINTLIB
-
- COMMONSRC := a64l.c abort.c abs.c access.c alarm.c alphasor.c atexit.c \
- ! atol.c bblink.c bcmp.c binmode.c bsearch.c calloc.c chdir.c chmod.c \
- ! clock.c close.c console.c crtinit.c ctermid.c \
- ctime.c ctype.c defmode.c dirent.c \
- doprnt.c dup.c eprintf.c exec.c execp.c fclose.c fcntl.c fdopen.c fflush.c \
- fgetc.c fgets.c filbuf.c findfile.c fopen.c fopenp.c fork.c fprintf.c \
- --- 299,306 ----
- ### how to build MINTLIB
-
- COMMONSRC := a64l.c abort.c abs.c access.c alarm.c alphasor.c atexit.c \
- ! atol.c bblink.c bcmp.c binmode.c bsearch.c calloc.c cfspeed.c chdir.c \
- ! chmod.c clock.c close.c console.c crtinit.c ctermid.c \
- ctime.c ctype.c defmode.c dirent.c \
- doprnt.c dup.c eprintf.c exec.c execp.c fclose.c fcntl.c fdopen.c fflush.c \
- fgetc.c fgets.c filbuf.c findfile.c fopen.c fopenp.c fork.c fprintf.c \
- ***************
- *** 310,317 ****
- getrusag.c gets.c getuid.c getw.c grp.c heapbase.c ic.c ident.c ig.c \
- il.c inistack.c initsig.c ioctl.c ip.c isatty.c iw.c kill.c killpg.c \
- link.c localtim.c lockf.c lseek.c ltoa.c main.c malloc.c memccpy.c \
- ! memchr.c memcmp.c mkdir.c mknod.c mktemp.c nice.c obstack.c open.c \
- ! pause.c perror.c pipe.c pgrp.c popen.c psignal.c putenv.c qsort.c raise.c \
- rand.c random.c read.c realloc.c regexp.c regsup.c rename.c rmdir.c \
- sbrk.c scandir.c scanf.c select.c setbuf.c setlocal.c setrlimi.c \
- setvbuf.c sgtty.c sigactio.c sigblock.c siglist.c signal.c sleep.c \
- --- 310,319 ----
- getrusag.c gets.c getuid.c getw.c grp.c heapbase.c ic.c ident.c ig.c \
- il.c inistack.c initsig.c ioctl.c ip.c isatty.c iw.c kill.c killpg.c \
- link.c localtim.c lockf.c lseek.c ltoa.c main.c malloc.c memccpy.c \
- ! memchr.c memcmp.c mkdir.c mkfifo.c mknod.c mktemp.c nice.c nlist.c \
- ! obstack.c open.c \
- ! pause.c perror.c pipe.c pgrp.c popen.c printf.c psignal.c putenv.c \
- ! qsort.c raise.c \
- rand.c random.c read.c realloc.c regexp.c regsup.c rename.c rmdir.c \
- sbrk.c scandir.c scanf.c select.c setbuf.c setlocal.c setrlimi.c \
- setvbuf.c sgtty.c sigactio.c sigblock.c siglist.c signal.c sleep.c \
- ***************
- *** 320,328 ****
- strerror.c strftime.c stricmp.c strlen.c strlwr.c strncat.c strncmp.c \
- strncpy.c strnicmp.c strpbrk.c strrchr.c strrev.c strspn.c strstr.c \
- strtok.c strtol.c strtoul.c strupr.c symlink.c sysconf.c system.c \
- ! sysvar.c textio.c thread.c time.c timeoday.c times.c tmpfile.c tmpnam.c \
- ! toxxx.c ttyname.c uname.c unlink.c unx2dos.c utime.c utmp.c wait.c \
- ! wait3.c waitpid.c write.c wtmp.c
- COMMONSRC := $(addprefix $(COMMONDIR)/,$(COMMONSRC))
-
- SRC := bzero.c memset.c alloca2.c \
- --- 322,333 ----
- strerror.c strftime.c stricmp.c strlen.c strlwr.c strncat.c strncmp.c \
- strncpy.c strnicmp.c strpbrk.c strrchr.c strrev.c strspn.c strstr.c \
- strtok.c strtol.c strtoul.c strupr.c symlink.c sysconf.c system.c \
- ! sysvar.c tcattr.c tcbreak.c tcdrain.c tcflow.c tcflush.c tcpgrp.c \
- ! textio.c thread.c time.c timeoday.c times.c tmpfile.c tmpnam.c \
- ! toxxx.c truncate.c ttyname.c uname.c unlink.c unx2dos.c utime.c \
- ! utmp.c vfprintf.c vprintf.c wait.c \
- ! wait3.c waitpid.c wcmb.c \
- ! wcscat.c wcscmp.c wcscpy.c wcslen.c wnull.c write.c wtmp.c
- COMMONSRC := $(addprefix $(COMMONDIR)/,$(COMMONSRC))
-
- SRC := bzero.c memset.c alloca2.c \
- *** 40.1 1993/11/01 21:35:14
- --- purec/mintlib.prj 1993/11/01 21:38:50
- ***************
- *** 26,31 ****
- --- 26,32 ----
- ..\bsearch.c
- bzero.c
- ..\calloc.c
- + ..\cfspeed.c
- ..\chdir.c
- ..\chmod.c
- ..\clock.c
- ***************
- *** 107,115 ****
- --- 108,118 ----
- ..\memcmp.c
- memset.c
- ..\mkdir.c
- + ..\mkfifo.c
- ..\mknod.c
- ..\mktemp.c
- ..\nice.c
- + ..\nlist.c
- ..\obstack.c
- ..\open.c
- ..\pause.c
- ***************
- *** 181,186 ****
- --- 184,194 ----
- ..\sysconf.c
- ..\system.c
- ..\sysvar.c
- + ..\tcbreak.c
- + ..\tcdrain.c
- + ..\tcflow.c
- + ..\tcflush.c
- + ..\tcpgrp.c
- ..\textio.c
- ..\thread.c [-P -S-]
- ..\time.c
- ***************
- *** 202,207 ****
- --- 210,220 ----
- ..\wait3.c
- ..\waitpid.c
- ..\wcmb.c
- + ..\wcscat.c
- + ..\wcscmp.c
- + ..\wcscpy.c
- + ..\wcslen.c
- + ..\wnull.c
- ..\write.c
- ..\wtmp.c
-
-